8a72436a6cb0b8cac4bbaec466ad624d3553ecf6,src/aktie/gui/Wrapper.java,Wrapper,unZipIt,#,445
Before Change
}
//get the zip file content
File jarfile = new File ( Wrapper.class.getProtectionDomain()
.getCodeSource()
.getLocation()
.getPath() );
ZipInputStream zis =
new ZipInputStream ( new FileInputStream ( jarfile ) );
//get the zipped file list entry
After Change
}
//get the zip file content
String fn = URLDecoder.decode ( Wrapper.class.getProtectionDomain()
.getCodeSource()
.getLocation()
.getPath(), "UTF-8" );
File jarfile = new File ( fn );
ZipInputStream zis =
new ZipInputStream ( new FileInputStream ( jarfile ) );
//get the zipped file list entry